Reads the specified array T[] data from a memory location.
シンタックス
'宣言
Public Overloads Shared Function Read(Of As {New, Struct})( _
ByVal As System.IntPtr, _
ByVal () As , _
ByVal As System.Integer, _
ByVal As System.Integer _
) As System.IntPtr
public static System.IntPtr Read<>(
System.IntPtr ,
[] ,
System.int ,
System.int
)
where T: new(), struct
パラメータ
- source
- Memory location to read from.
- data
- The data write to.
- offset
- The offset in the array to write to.
- count
- The number of T element to read from the memory location.
型パラメータ
- T
- Type of a data to read.
戻り値の型
source pointer + sizeof(T) * count.
参照